From 34d07706da0f5b38f08fea783370da2f96924d99 Mon Sep 17 00:00:00 2001 From: parkrrrr Date: Mon, 17 Jul 2006 18:37:19 +0000 Subject: [PATCH] handle type 3 record like type 2 record until we figure out what those other two bytes/strings/whatevers are --- gpsbabel/tomtom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpsbabel/tomtom.c b/gpsbabel/tomtom.c index 97dcb81f0..4a89d4133 100644 --- a/gpsbabel/tomtom.c +++ b/gpsbabel/tomtom.c @@ -104,7 +104,7 @@ data_read(void) read_long( file_in ); read_long( file_in ); } - else if ( rectype == 2 ) { + else if ( rectype == 2 || rectype == 3 ) { recsize = read_long( file_in ); x = read_long( file_in ); y = read_long( file_in ); -- 2.30.2